home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Business / PaperCut Quota 6.3 / pc-setup(1).exe / {app} / WebAdmin / includes / Config.inc next >
Encoding:
Text File  |  2005-12-05  |  2.3 KB  |  57 lines

  1. <%
  2. ' (c) Copyright 1999-2004 PaperCut Software Pty. Ltd.
  3. '
  4. ' PaperCut Web Administration Configuration File.
  5. ' Edit this file to modify the behavior of PaperCut's Web Administration pages.
  6. '
  7.  
  8. ' Options to control if standard users can view their own activity logs.
  9. ' The detailed logs will always be able to be viewed by Administrators.
  10. ' Set to "False" to disable.
  11. gblnShowUserPrintLog = True
  12. gblnShowUserNetLog = True
  13. gblnShowUserTransactionLog = True
  14.  
  15. ' Enable the link to allow users to transfer their credit
  16. gblnShowTransferOption = True
  17.  
  18. ' Enables TopUp card functionality
  19. gblnEnableTopUpCards = True
  20.  
  21. ' Setting this to true displays a link to the admin home page even for users
  22. ' who have yet to be confirmed as admin.
  23. ' The User will be confirmed as admin when they hit one of the admin pages, that
  24. ' are only accessible by admin users.
  25. gblnAlwaysShowAdminLink = True
  26.  
  27. ' If you want to display user internet usage totals, but the net charging module is not installed 
  28. ' on this server (e.g. it is installed on a proxy server), then set this value to "True"
  29. ' If net charging is install on this server, the totals are always displayed.
  30. gblnShowUserNetUsageTotals = False
  31.  
  32. ' To stop the charge rates page from being displayed in the web tools interface set the following to "False"
  33. gblnShowChargeRates = True
  34.  
  35. ' To customize the list of other charges, uncomment the line below, and change
  36. ' the list to include the charges you want included
  37. ' of other charges.
  38. 'garrChargeTypes = Array("Photo paper", "Library fines", "Stationary")
  39.  
  40. ' For information on how to translate the web tools into your language
  41. ' see "includes\lang_en.inc"
  42.  
  43. ' If your users' browser language settings are configured, the language will be automatically detected.
  44. ' If you want to force the web site to be in a particular language, remove the ' from the
  45. ' start of the line below, and change the language code appropriately
  46. '
  47. ' SetActiveLanguage("en")
  48.  
  49.  
  50. ' This setting allows you to use the web tools interface in an environment where
  51. ' it is not possible to use Windows Integrated Authentication (e.g. when Macs are
  52. ' accessing the web tools.)  Setting this to true allows users to enter their username
  53. ' manually when they connect to the web tools.
  54. ' You must ensure IIS is configured to allow anonymous access.
  55. gblnAllowAnonymousAccess = False
  56. %>
  57.